home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Libraries
/
TransSkel
/
Convenience
/
Dialog Item Stuff
/
SkelSetDlogRect.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-20
|
251 b
|
18 lines
|
[
TEXT/KAHL
]
/*
* Set bounding rectangle of a dialog item.
*/
# include "TransSkel.h"
pascal void
SkelSetDlogRect (DialogPtr d, short item, Rect *r)
{
short type;
Handle h;
Rect rOld;
GetDItem (d, item, &type, &h, &rOld);
SetDItem (d, item, type, h, r);
}